-FROM alpine:latest
+FROM amd64/alpine:3.13
RUN apk update && \
apk upgrade && \
apk add gcc make libuv-dev musl-dev pcre2-dev yajl-dev util-linux-dev linux-headers git && \
dnsConfig:
searches:
- siridb.default.svc.cluster.local
+ tolerations: # wait 4 hour as synchronizing might take some time
+ - key: "node.kubernetes.io/not-ready"
+ operator: "Exists"
+ effect: "NoExecute"
+ tolerationSeconds: 14400
+ - key: "node.kubernetes.io/unreachable"
+ operator: "Exists"
+ effect: "NoExecute"
+ tolerationSeconds: 14400
containers:
- name: siridb
image: siridb/siridb-server:2.0.42 # Pin to a specific version
httpGet:
path: /healthy
port: 8080
+ initialDelaySeconds: 1800
periodSeconds: 20
timeoutSeconds: 10
readinessProbe:
httpGet:
path: /ready
port: 8080
- initialDelaySeconds: 15
+ initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 10
volumeClaimTemplates:
/*
* main.c - SiriDB.
*
- * author/maintainer : Jeroen van der Heijden <jeroen@transceptor.technology>
+ * author/maintainer : Jeroen van der Heijden <jeroen@cesbit.com>
* contributors : https://github.com/SiriDB/siridb-server/contributors
* home page : https://siridb.net
- * copyright : 2018, Transceptor Technology
+ * copyright : 2022, Cesbit
*
*/
#include <locale.h>
* tag.c - Tag.
*
* author : Jeroen van der Heijden
- * email : jeroen@transceptor.technology
- * copyright : 2017, Transceptor Technology
+ * email : jeroen@cesbit.com
+ * copyright : 2022, Cesbit
*
* changes
* - initial version, 16-06-2017
* tags.c - Tags.
*
* author : Jeroen van der Heijden
- * email : jeroen@transceptor.technology
- * copyright : 2017, Transceptor Technology
+ * email : jeroen@cesbit.com
+ * copyright : 2022, Cesbit
*
* changes
* - initial version, 16-06-2017